baubs git
Commit 4593b66356b63271e11c4bc83dd7ff20b81c5bd9
Parents : 9337fdf
Author : Jan-Henrik Bruhn <jan-henrik.bruhn@offis.de>
Date : 2025-12-22T11:59:02+01:00
fix: Restore correct destructive variant colors
Swap destructive and destructive-foreground colors back to correct values. The previous commit accidentally reversed them, causing error states to show white background with red text instead of red background with white text.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Changes
Diff
diff --git a/src/App.css b/src/App.css
index 562dd32..2ec5950 100644
--- a/src/App.css
+++ b/src/App.css
@@ -87,8 +87,8 @@
--accent: hsl(263.4 70% 50.4%); /* purple-600 for dark */
--accent-foreground: hsl(210 40% 98%);
- --destructive: hsl(210 40% 98%);
- --destructive-foreground: hsl(0 62.8% 30.6%); /* red-900 */
+ --destructive: hsl(0 62.8% 30.6%); /* red-900 */
+ --destructive-foreground: hsl(210 40% 98%);
--success: hsl(142.1 70.6% 45.3%); /* green-500 for dark */
--success-foreground: hsl(210 40% 98%);
Served by rngit 1.3.3 - Generated in 0.08s